home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 24 / MacFormat n. 24 (Spain) / MacFormat 24.bin / Demos / Jungle Activated! / JungleActivated Demo / jung DEMO d / 00144_Video Pause.ls < prev    next >
Encoding:
Text File  |  1996-10-14  |  267 b   |  13 lines

  1. on mouseUp
  2.   global gMovieTime, gMoviePause
  3.   if gMoviePause = 0 then
  4.     pause()
  5.     set gMovieTime to the movieTime of sprite 2 - 4
  6.     set gMoviePause to 1
  7.   else
  8.     set the movieTime of sprite 2 to gMovieTime
  9.     continue()
  10.     set gMoviePause to 0
  11.   end if
  12. end
  13.